home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / TEXT / TABCONT.TXT < prev   
Text File  |  1994-05-15  |  8KB  |  183 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.                      CORONADO ENTERPRISES
  7.                             C TUTOR
  8.  
  9. This documentation and the accompanying software, including all 
  10. of the example C programs and text files, are protected under 
  11. United States copyright law to protect them from unauthorized 
  12. commercialization.
  13.  
  14. You are permitted to make archival copies of the software solely 
  15. for the purpose of backing-up your copy of the distribution disk 
  16. and protecting your investment from loss.  You are permitted to 
  17. use this software on as many computers as you have legal access 
  18. to provided it is not in use on more than one computer at a time.  
  19. As the registered purchaser of this software, you are permitted 
  20. to use portions of any of the example programs for inclusion in 
  21. your own software and will not be required to pay any royalties 
  22. or fees for any distribution.
  23.  
  24.  
  25.                            WARRANTY
  26.  
  27. The diskette and the accompanying documentation are warranted to 
  28. be free of defects in materials and workmanship for a period of 
  29. 60 days from purchase.  The warranty is limited to replacement 
  30. of any or all defective material.   Coronado Enterprises will 
  31. not be responsible for any loss of profit or any other commercial 
  32. damage due to the use of this tutorial or the information 
  33. contained within it.
  34.  
  35.  
  36.                 Gordon Dodrill - May 15, 1994
  37.  
  38.  
  39.  
  40.        Copyright (c) 1988, 1989, 1994 Coronado Enterprises
  41.  
  42.  
  43.                     Coronado Enterprises
  44.                    12501 Coronado Ave NE
  45.                 Albuquerque, New Mexico 87122
  46.  
  47.                 C TUTORIAL - TABLE OF CONTENTS 
  48.  
  49. Introduction                                     Page I-1
  50.  
  51. Chapter 1 - Getting started                      Page 1-1
  52.     FIRSTEX.C    The first example program          1-3
  53.  
  54. Chapter 2 - Program Structure                    Page 2-1
  55.     TRIVIAL.C    The minimum program                2-1
  56.     WRTSOME.C    Write some output                  2-1
  57.     WRTMORE.C    Write more output                  2-2
  58.     ONEINT.C     One integer variable               2-3
  59.     COMMENTS.C   Comments in C                      2-4
  60.     CPPCOMS.C    C++ style comments                 2-5
  61.     GOODFORM.C   Good program style                 2-6
  62.     UGLYFORM.C   Bad program style                  2-6
  63.  
  64. Chapter 3 - Program Control                      Page 3-1
  65.     WHILE.C      The While loop                     3-1
  66.     DOWHILE.C    The Do-While loop                  3-2
  67.     FORLOOP.C    The For loop                       3-2
  68.     IFELSE.C     The If & If-Else construct         3-3
  69.     BREAKCON.C   The Break & Continue               3-4
  70.     SWITCH.C     The Switch construct               3-4
  71.     GOTOEX.C     The Goto Statement                 3-5
  72.     TEMPCONV.C   The temperature conversion         3-6
  73.     DUMBCONV.C   Poor program style                 3-7
  74.     STYLE1.C     Style illustrations                3-7
  75.  
  76. Chapter 4 - Assignment & Logical Compare         Page 4-1
  77.     INTASIGN.C   Integer assignments                4-1
  78.     MORTYPES.C   More data types                    4-2
  79.     LOTTYPES.C   Lots of data types                 4-4
  80.     COMBINE.C    Combining different types          4-6
  81.     COMPARES.C   Logical compares                   4-7
  82.     CRYPTIC.C    The cryptic constructs             4-11
  83.                  
  84. Chapter 5 - Functions, variables, & prototyping  Page 5-1
  85.     SUMSQRES.C   First functions                    5-1
  86.     SQUARES.C    Return a value                     5-3
  87.     FLOATSQ.C    Floating returns                   5-4
  88.     SCOPE.C      Scope of variables                 5-5
  89.     RECURSON.C   Simple Recursion Program           5-9
  90.     BACKWARD.C   Another Recursion Program          5-11
  91.     FLOATSQ2.C   Float returns with prototypes      5-11
  92.     STYLE2.C     Style illustrations                5-12
  93.  
  94. Chapter 6 - The C preprocessor                   Page 6-1
  95.     DEFINE.C     Defines                            6-1
  96.     MACRO.C      Macros                             6-3
  97.     IFDEF.C      If defined                         6-3
  98.     IFNDEF.C     If not defined                     6-4
  99.     DEBUGEX.C    Debugging help                     6-4
  100.     ENUM.C       Enumerated type                    6-6
  101.  
  102.  
  103. Chapter 7 - Strings and Arrays                   Page 7-1
  104.     CHRSTRG.C    Character Strings                  7-1
  105.     STRINGS.C    More Character strings             7-3
  106.     INTARRAY.C   Integer Array                      7-4
  107.     BIGARRAY.C   Many Arrays                        7-5
  108.     PASSBACK.C   Getting data from Functions        7-5
  109.     MULTIARY.C   Multidimensional arrays            7-6
  110.  
  111. Chapter 8 - Pointers                             Page 8-1
  112.     POINTER.C    Simple Pointers                    8-1
  113.     POINTER2.C   More pointers                      8-4
  114.     TWOWAY.C     Twoway Function Data               8-6
  115.     FUNCPNT.C    A pointer to a function            8-7
  116.  
  117. Chapter 9 - Standard Input/Output                Page 9-1
  118.     SIMPLEIO.C   Simplest standard I/O              9-1
  119.     SINGLEIO.C   Single character I/O               9-4
  120.     BETTERIN.C   Better form of single I/O          9-4
  121.     INTIN.C      Integer input                      9-6
  122.     STRINGIN.C   String input                       9-7
  123.     INMEM.C      In memory I/O conversion           9-9
  124.     SPECIAL.C    Standard error output              9-10
  125.  
  126. Chapter 10 - File Input/Output                    Page 10-1
  127.     FORMOUT.C    Formatted output                   10-1
  128.     CHAROUT.C    Single character output            10-3
  129.     READCHAR.C   Read single characters             10-4
  130.     READTEXT.C   Read single words                  10-5
  131.     READGOOD.C   Better read and display            10-6
  132.     READLINE.C   Read a full line                   10-6
  133.     ANYFILE.C    Read in any file                   10-7
  134.     PRINTDAT.C   Output to the printer              10-7
  135.  
  136. Chapter 11 - Structures                           Page 11-1
  137.     STRUCT1.C    Minimum structure example          11-1
  138.     STRUCT2.C    Array of structures                11-2
  139.     STRUCT3.C    Structures with pointers           11-3
  140.     NESTED.C     Nested structure                   11-5
  141.     UNION1.C     An example union                   11-7
  142.     UNION2.C     Another Union example              11-8
  143.     BITFIELD.C   Bitfield example                   11-9
  144.     STYLE3.H     Style illustration                 11-10
  145.     STYLE3.C     Style illustration                 11-11
  146.  
  147. Chapter 12 - Dynamic Allocation                   Page 12-1
  148.     DYNLIST.C    Simple Dynamic Allocation          12-1
  149.     BIGDYNL.C    Large Dynamic Allocation           12-5
  150.     DYNLINK.C    Dynamic Linked List Program        12-6
  151.  
  152. Chapter 13 - Character and Bit Manipulation       Page 13-1
  153.     UPLOW.C      Upper/Lower Case Text              13-1
  154.     CHARCLAS.C   Character Classification           13-1
  155.     BITOPS.C     Logical Bit Operations             13-2
  156.     SHIFTER.C    Bit Shifting Operations            13-2
  157.  
  158.  
  159. Chapter 14 - Example programs                     Page 14-1
  160.     DOSEX.C      DOS call examples                  14-2
  161.     WHATNEXT.C   Ask Question in Batch File         14-3
  162.     LIST.C       Source Code Lister                 14-4
  163.     VC.C         Visual Calculator                  14-4
  164.  
  165.  
  166.  
  167. ABOUT THE AUTHOR
  168. -----------------------------------------------------------------
  169. The author of this tutorial began programming in 1961 using 
  170. FORTRAN on an IBM 1620.  Since then, most of his career has been 
  171. involved with designing digital logic for satellite application.  
  172. In 1983, being somewhat burned out with logic design, he began a 
  173. study of some of the more modern programming languages and has 
  174. since made a complete career shift to software development.  
  175. After learning Pascal, C was studied, followed by Modula-2 and 
  176. Ada, and more recently C++.  Rather than simply learning the 
  177. syntax of each new language, modern methods of software 
  178. engineering were studied and applied to effectively utilize the 
  179. languages.  He is currently employed by a large research and 
  180. development laboratory where he continues to study, teach, and 
  181. apply the newer programming languages.
  182.  
  183.